home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- * aldUtils.h *
- ****************************************************************************/
- #ifdef MACINTOSH
- void movmem ARGS((char *, char *, unsigned));
- void setmem ARGS((char *, unsigned, char));
-
- #define lmemcpy(pd,ps,n) (movmem((ps),(pd),(n)))
- #define lmemset(p,c,n) (setmem((p),(n),(c)))
- #endif /* MACINTOSH */
-
- #ifdef WINDOWS
- #define lmemcpy(pd,ps,n) (memcpy((pd),(ps),(n)))
- #define lmemset(p,c,n) (memset((p),(c),(n)))
- #endif